home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / f90 / conjg.z / conjg
Encoding:
Text File  |  2002-10-03  |  2.3 KB  |  65 lines

  1. CONJG(3I)                                             Last changed: 4-13-99
  2.  
  3.  
  4. NNAAMMEE
  5.      CCOONNJJGG, DDCCOONNJJGG, QQCCOONNJJGG - Computes conjugate of a complex number
  6.  
  7. SSYYNNOOPPSSIISS
  8.      CCOONNJJGG (([ZZ==]_z]))
  9.      DDCCOONNJJGG (([ZZ==]_z]))
  10.      QQCCOONNJJGG (([ZZ==]_z]))
  11.  
  12. IIMMPPLLEEMMEENNTTAATTIIOONN
  13.      UNICOS, UNICOS/mk, IRIX systems
  14.  
  15.      CF90, MIPSpro 7 Fortran 90, MIPSpro Fortran 77
  16.  
  17. SSTTAANNDDAARRDDSS
  18.      Fortran
  19.  
  20.      Fortran extensions:  DDCCOONNJJGG, QQCCOONNJJGG
  21.  
  22. DDEESSCCRRIIPPTTIIOONN
  23.      CCOONNJJGG, DDCCOONNJJGG, and QQCCOONNJJGG return the conjugate of a complex number.
  24.      CCOONNJJGG is the generic function name; the others are specifics.  These
  25.      are elemental intrinsic functions.  They accept the following
  26.      argument:
  27.  
  28.      _z         Must be type complex.  See the RETURN VALUES section for
  29.                information on input data types and return values.
  30.  
  31.                The data type and kind type for single-precision,
  32.                double-precision, and quad-precision values differ depending
  33.                on your platform.  For platform-specific information, see
  34.                the TERMINOLOGY section of the IINNTTRROO__IINNTTRRIINN(3I) man page.
  35.  
  36.      This function evaluates _y = _z  - _i_z .
  37.                                   _r     _i
  38. NNOOTTEESS
  39.      The CCOONNJJGG intrinsic function name can be passed as an argument; the
  40.      others cannot.
  41.  
  42. RREETTUURRNN VVAALLUUEESS
  43.      CCOONNJJGG returns the complex conjugate of a complex number.
  44.  
  45.      DDCCOONNJJGG returns the double-precision complex conjugate of a
  46.      double-complex number.
  47.  
  48.      QQCCOONNJJGG returns the quad-precision complex conjugate of a
  49.      quad-precision complex number.
  50.  
  51. EEXXAAMMPPLLEESS
  52.      The following program gives RREESSUULLTT==((33..00,,--44..00)):
  53.  
  54.           PROGRAM CONTEST
  55.           COMPLEX ARG, RESULT
  56.           ARG=(3.0,4.0)
  57.           RESULT=CONJG(ARG)
  58.           PRINT *,RESULT
  59.           STOP
  60.           END
  61.  
  62. SSEEEE AALLSSOO
  63.      _I_n_t_r_i_n_s_i_c _P_r_o_c_e_d_u_r_e_s _R_e_f_e_r_e_n_c_e _M_a_n_u_a_l for the printed version of this
  64.      man page.
  65.